gtk4.git
10 years agoUpdated Polish translation
Piotr Drąg [Fri, 11 Mar 2016 01:17:05 +0000 (02:17 +0100)]
Updated Polish translation

10 years agoGtkFileChooserEntry: move the cursor after the user chooses a completion from the...
Federico Mena Quintero [Thu, 10 Mar 2016 22:02:56 +0000 (16:02 -0600)]
GtkFileChooserEntry: move the cursor after the user chooses a completion from the list

https://bugzilla.gnome.org/show_bug.cgi?id=756450

10 years agoGtkFileChooserEntry: regenerate the completions if the dir_part changes
Federico Mena Quintero [Thu, 10 Mar 2016 21:05:16 +0000 (15:05 -0600)]
GtkFileChooserEntry: regenerate the completions if the dir_part changes

Consider this bug:

1. Open a file chooser; switch it to $HOME

2. Start typing "~/Dow" with some file that *does* exist in your $HOME

3. Delete the inline-completion selection (e.g. the "nloads" after "~/Down").

4. While you are at "~/Dow_" hit Tab.  No completion will occur.

This happens because of the following.

Say the GtkFileChooserEntry is in the process of loading $HOME,
because _set_base_folder() was called.  If the entry contains no text,
then the FULL_PATH_COLUMN of the file system model will be set to
unprefixed filenames from $HOME, like

  .ssh/
  Documents/
  Downloads/
  somefile.txt

Later we avoid reloading the folder if g_file_equal(old_folder, new_folder).

However, the FULL_PATH_COLUMN gets populated in completion_store_set()
out of the actual filenames that GIO returned, plus the chooser_entry->dir_part.

If the user starts typing "~/Dow" then dir_part changes to "~/", *but*
the folder won't be reloaded since it is also $HOME.  However, the completion
machinery assumes that FULL_PATH_COLUMN will contain prefixed entries like

  ~/.ssh/
  ~/Documents/
  ~/Downloads/
  ~/somefile.txt

So, we add an invariant that chooser_entry->dir_part and
chooser_entry->current_folder_file must change at the same time, and
must not get out of sync:  If any of them changes, then the
completions are regenerated.

10 years agoinspector: Show the frame clock in misc
Matthias Clasen [Thu, 10 Mar 2016 21:21:35 +0000 (16:21 -0500)]
inspector: Show the frame clock in misc

There is no convenient way to get a handle on the frame clock,
otherwise, and the frame clock object is where we show the frame
rate...

10 years agoUpdated German translation
Mario Blättermann [Thu, 10 Mar 2016 18:58:33 +0000 (19:58 +0100)]
Updated German translation

10 years agoUpdated Spanish translation
Daniel Mustieles [Thu, 10 Mar 2016 17:23:24 +0000 (17:23 +0000)]
Updated Spanish translation

10 years agoUpdated Polish translation
Piotr Drąg [Thu, 10 Mar 2016 16:30:11 +0000 (17:30 +0100)]
Updated Polish translation

10 years agoconfigure.ac: bump version
Carlos Soriano [Thu, 10 Mar 2016 15:28:59 +0000 (16:28 +0100)]
configure.ac: bump version

So nautilus and other consumers of the sidebar can use the non
API-broken API of the sidebar.

10 years agoUpdated Brazilian Portuguese translation
Artur Morais [Thu, 10 Mar 2016 14:33:41 +0000 (14:33 +0000)]
Updated Brazilian Portuguese translation

10 years agoUpdated Hungarian translation
Balázs Meskó [Thu, 10 Mar 2016 13:59:55 +0000 (13:59 +0000)]
Updated Hungarian translation

10 years agoGDK W32: Partially rollback the custom resize for GL windows
Руслан Ижбулатов [Wed, 9 Mar 2016 09:50:09 +0000 (09:50 +0000)]
GDK W32: Partially rollback the custom resize for GL windows

If a window is being drawn by OpenGL, we need to apply any
pending resizes to it *before* we paint.

https://bugzilla.gnome.org/show_bug.cgi?id=763287

10 years agoAdwaita: gtkcolorscale styling.
Lapo Calamandrei [Thu, 10 Mar 2016 12:35:08 +0000 (13:35 +0100)]
Adwaita: gtkcolorscale styling.

10 years agoUpdated Serbian translation
Мирослав Николић [Thu, 10 Mar 2016 10:54:39 +0000 (11:54 +0100)]
Updated Serbian translation

10 years agoUpdated Serbian translation
Мирослав Николић [Thu, 10 Mar 2016 10:39:44 +0000 (11:39 +0100)]
Updated Serbian translation

10 years agoUpdated Czech translation
Marek Černocký [Thu, 10 Mar 2016 09:47:04 +0000 (10:47 +0100)]
Updated Czech translation

10 years agoquartz: Get core pointer from device manager
Philip Chimento [Thu, 10 Mar 2016 06:10:04 +0000 (22:10 -0800)]
quartz: Get core pointer from device manager

Some spots missed in the earlier refactor removing core_pointer from
the GdkDisplay struct.

https://bugzilla.gnome.org/show_bug.cgi?id=762820

10 years agowayland: Add request focus support via gtk_shell
Jonas Ådahl [Tue, 8 Mar 2016 09:03:06 +0000 (17:03 +0800)]
wayland: Add request focus support via gtk_shell

A gtk_surface.present request was added to gtk_surface which takes
timestamp from some input event, and uses that timestamp to figure out
whether the window can be presented or not. If we don't have a
timestamp, we should just give up instead of making up our own,
otherwise we might steal someones focus.

https://bugzilla.gnome.org/show_bug.cgi?id=763037

10 years agowayland: Add system bell support via gtk_shell
Jonas Ådahl [Mon, 7 Mar 2016 04:41:31 +0000 (12:41 +0800)]
wayland: Add system bell support via gtk_shell

Invoke the system bell by calling the request added to the gtk_shell
protocol.

https://bugzilla.gnome.org/show_bug.cgi?id=763001

10 years agowayland: Don't invent our own unstable protocol semantics
Jonas Ådahl [Mon, 7 Mar 2016 03:49:35 +0000 (11:49 +0800)]
wayland: Don't invent our own unstable protocol semantics

The gtk_shell protocol used some half baked unstable protocol semantics
that worked by only allowing binding the exact version of the
interface. This hack is a bit too confusing and it makes it impossible
to do any compatible changes without breaking things.

So, instead rename it to include a number in the interface names. This
way we can add requests and events without causing compatibility issues,
and we can later remove requests and events by bumping the number in
the interface names.

https://bugzilla.gnome.org/show_bug.cgi?id=763001

10 years agoinspector: Refine strv editor
Matthias Clasen [Thu, 10 Mar 2016 02:58:38 +0000 (21:58 -0500)]
inspector: Refine strv editor

Put some spacing between the rows, and link the buttons to
the entries they belong to.

10 years agoinspector: Do a better job with readonly properties
Matthias Clasen [Thu, 10 Mar 2016 02:42:08 +0000 (21:42 -0500)]
inspector: Do a better job with readonly properties

Say if they are non-writable or construct-only, and also
gray out construct-only properties in the list.

10 years agoGtkActionable: Improve property names
Matthias Clasen [Thu, 10 Mar 2016 02:13:44 +0000 (21:13 -0500)]
GtkActionable: Improve property names

These names show up as title in the property editor
in the inspector, so we want them to look consistent
with the rest.

10 years agoinspector: Minor refactoring
Matthias Clasen [Thu, 10 Mar 2016 02:01:38 +0000 (21:01 -0500)]
inspector: Minor refactoring

Break out some functions in prop-editor.c

10 years agoinspector: Redo property lists a bit
Matthias Clasen [Thu, 10 Mar 2016 01:55:46 +0000 (20:55 -0500)]
inspector: Redo property lists a bit

Break out value types as a separate column, to make the
value column more readable.

10 years agoinspector: Avoid overflow when editing doubles
Matthias Clasen [Thu, 10 Mar 2016 00:40:06 +0000 (19:40 -0500)]
inspector: Avoid overflow when editing doubles

The adjustment double properties allow values from -G_MAXDOUBLE
to G_MAXDOUBLE, which leads to overflow when calculating
max - min / 10. To avoid that, simply use a fixed page_size of 1.0.

10 years agoUpdated Polish translation
Piotr Drąg [Thu, 10 Mar 2016 02:43:27 +0000 (03:43 +0100)]
Updated Polish translation

10 years agoinspector: Wording changes
Matthias Clasen [Thu, 10 Mar 2016 00:08:46 +0000 (19:08 -0500)]
inspector: Wording changes

Align the property nicks of GtkCssNode with the column names
in the inspector node tree.

10 years agoinspector: Some more cleanup
Matthias Clasen [Thu, 10 Mar 2016 00:07:32 +0000 (19:07 -0500)]
inspector: Some more cleanup

The last commit left some unused functions behind.

10 years agoinspector: Remove an unncessary context menu
Matthias Clasen [Wed, 9 Mar 2016 23:58:48 +0000 (18:58 -0500)]
inspector: Remove an unncessary context menu

Now that we have the style properties on the same page again,
we don't need the context menu anymore.

10 years agoUpdated French translation
Claude Paroz [Wed, 9 Mar 2016 22:09:12 +0000 (23:09 +0100)]
Updated French translation

10 years agorange: Fix gadget state propagation
Matthias Clasen [Wed, 9 Mar 2016 19:15:40 +0000 (14:15 -0500)]
range: Fix gadget state propagation

The contents node was not getting state updates at all, and the
trough node was missing some state updates as well, because we
were not calling update_trough_state() in all the places where
it is needed.

10 years agowayland: Make data_source_target() an empty stub
Carlos Garnacho [Wed, 9 Mar 2016 16:30:29 +0000 (17:30 +0100)]
wayland: Make data_source_target() an empty stub

This request actually means nothing to the upper GDK layers,
we used to preempt a GDK_SELECTION_REQUEST event, but this is too
eager, and not like things work in X11.

Originally in wayland, this event may be used for feedback purposes.
We however don't perform any mimetype-based feedback, so we can
safely ignored.

This makes data_source_send() the only place where we actually
trigger GDK_SELECTION_REQUEST, this one is conceptually the same
than the X11 selection request event.

10 years agowayland: Allow 0-size writes in selection/dnd
Carlos Garnacho [Wed, 9 Mar 2016 16:28:29 +0000 (17:28 +0100)]
wayland: Allow 0-size writes in selection/dnd

It's not something we should be forbidding explicitly, definitely
no-op is not the best option.

10 years agowayland: Clear more thoroughly the source-side data on dnd_finished
Carlos Garnacho [Wed, 9 Mar 2016 16:27:07 +0000 (17:27 +0100)]
wayland: Clear more thoroughly the source-side data on dnd_finished

The targets should also be unset.

10 years agowayland: Unset the source-side DnD fd after passing it to the stream
Carlos Garnacho [Wed, 9 Mar 2016 16:25:33 +0000 (17:25 +0100)]
wayland: Unset the source-side DnD fd after passing it to the stream

The ownership is given to the stream, so unset it here.

10 years agoAdwaita: radiobutton and checkbutton style fixes
Lapo Calamandrei [Wed, 9 Mar 2016 16:28:16 +0000 (17:28 +0100)]
Adwaita: radiobutton and checkbutton style fixes

padding and margins tweaks and treat the hover when placed in
popovers.

10 years agotextview: Ensure the borders fit into the allocation
Timm Bäder [Wed, 9 Mar 2016 10:15:34 +0000 (11:15 +0100)]
textview: Ensure the borders fit into the allocation

https://bugzilla.gnome.org/show_bug.cgi?id=763216

10 years agoAdwaita: added a border to sidebars...
Lapo Calamandrei [Wed, 9 Mar 2016 14:35:25 +0000 (15:35 +0100)]
Adwaita: added a border to sidebars...

...hopefully when needed.
By default I assume a left hand side placement on ltr languages
and the opposite in rtl, for other placements left/right style
classes can be used.

10 years agowindow: Avoid excessive resizing with popovers
Matthias Clasen [Wed, 9 Mar 2016 13:58:23 +0000 (08:58 -0500)]
window: Avoid excessive resizing with popovers

Under Wayland, popovers use subsurfaces, and we end up getting
configure events for these delivered to the toplevel they're in.
To avoid triggering resize loops, ignore configure events that
are not for the toplevel window itself.

https://bugzilla.gnome.org/show_bug.cgi?id=763351

10 years agoAdwaita: regenerate css
Lapo Calamandrei [Tue, 8 Mar 2016 19:39:24 +0000 (20:39 +0100)]
Adwaita: regenerate css

since a bit was missing from the previous commit

10 years agoAdwaita: add a top border to actionbars
Lapo Calamandrei [Tue, 8 Mar 2016 19:09:18 +0000 (20:09 +0100)]
Adwaita: add a top border to actionbars

10 years agoAdwaita: make links on infobars visible
Lapo Calamandrei [Tue, 8 Mar 2016 18:55:35 +0000 (19:55 +0100)]
Adwaita: make links on infobars visible

10 years agoUpdated Czech translation
Marek Černocký [Tue, 8 Mar 2016 17:58:13 +0000 (18:58 +0100)]
Updated Czech translation

10 years agoUpdated Czech translation
Marek Černocký [Tue, 8 Mar 2016 17:45:50 +0000 (18:45 +0100)]
Updated Czech translation

10 years agoUpdated Russian translation
Stas Solovey [Tue, 8 Mar 2016 17:39:22 +0000 (17:39 +0000)]
Updated Russian translation

10 years agoSet VirtualBox USB Tablet to GDK_SOURCE_MOUSE
Takao Fujiwara [Tue, 8 Mar 2016 13:18:06 +0000 (22:18 +0900)]
Set VirtualBox USB Tablet to GDK_SOURCE_MOUSE

The virtual host assigns the name of the mouse device to
"VirtualBox USB Tablet" in VirtualBox and we'd use that device as mouse.
If not, GtkTooltip is not enabled.

https://bugzilla.gnome.org/show_bug.cgi?id=763017

10 years agoAdwaita: path-bar style fixes
Lapo Calamandrei [Tue, 8 Mar 2016 15:06:55 +0000 (16:06 +0100)]
Adwaita: path-bar style fixes

what we used to do here doesn't really work anymore, so this adapt
to gtk+ and theme changes.

10 years agogtk-demo: Fix a typo
Matthias Clasen [Tue, 8 Mar 2016 13:53:18 +0000 (08:53 -0500)]
gtk-demo: Fix a typo

10 years agogtk-demo: Update foreigndrawing example some more
Matthias Clasen [Tue, 8 Mar 2016 13:52:13 +0000 (08:52 -0500)]
gtk-demo: Update foreigndrawing example some more

The scrollbar changes need to take the theme's negative margins
into account.

10 years agoAdwaita: vertical paddings on menu
Lapo Calamandrei [Tue, 8 Mar 2016 13:26:28 +0000 (14:26 +0100)]
Adwaita: vertical paddings on menu

mostly to fix combobox menu positioning, looks nice anyway.

10 years agogtk-demo: Try to fix foreigndrawing scrollbars
Matthias Clasen [Tue, 8 Mar 2016 13:13:56 +0000 (08:13 -0500)]
gtk-demo: Try to fix foreigndrawing scrollbars

The node hierarchy and sizing has changed with the gadgetization
of range widgets.

10 years agoAdwaita: fix a typo
Lapo Calamandrei [Tue, 8 Mar 2016 13:00:01 +0000 (14:00 +0100)]
Adwaita: fix a typo

10 years agoUpdated Serbian translation
Мирослав Николић [Tue, 8 Mar 2016 08:50:33 +0000 (09:50 +0100)]
Updated Serbian translation

10 years agoUpdated Serbian translation
Мирослав Николић [Tue, 8 Mar 2016 08:48:24 +0000 (09:48 +0100)]
Updated Serbian translation

10 years agoUpdated Serbian translation
Мирослав Николић [Tue, 8 Mar 2016 08:46:13 +0000 (09:46 +0100)]
Updated Serbian translation

10 years agoUpdated Hungarian translation
Balázs Úr [Tue, 8 Mar 2016 07:42:18 +0000 (07:42 +0000)]
Updated Hungarian translation

10 years agoGDK-Win32: Make update_stye_bits() available within the backend
Chun-wei Fan [Tue, 8 Mar 2016 05:00:49 +0000 (13:00 +0800)]
GDK-Win32: Make update_stye_bits() available within the backend

Other portions of the GDK-Win32 backend make use of this function as
layered windows need to be disabled for GL windows and possibly other
parts, so make this function a private function that is available within
the backend.

https://bugzilla.gnome.org/show_bug.cgi?id=763285

10 years agoWin32: Disable layered windows for GL
Chun-wei Fan [Sat, 5 Mar 2016 03:34:16 +0000 (11:34 +0800)]
Win32: Disable layered windows for GL

Layered windows and GL do not work well together, so disable layered
windows when initiating a GdkGLContext, so that GtkGLArea programs can run
properly.

Also based on patch by LRN to address the issue.

https://bugzilla.gnome.org/show_bug.cgi?id=763080

10 years agoUpdated Slovak translation
Dušan Kazik [Mon, 7 Mar 2016 20:32:48 +0000 (20:32 +0000)]
Updated Slovak translation

10 years agoUpdated Polish translation
Piotr Drąg [Mon, 7 Mar 2016 18:54:44 +0000 (19:54 +0100)]
Updated Polish translation

10 years agoUpdated POTFILES.in
Piotr Drąg [Mon, 7 Mar 2016 18:35:35 +0000 (19:35 +0100)]
Updated POTFILES.in

10 years agoFix another installed test typo
Matthias Clasen [Mon, 7 Mar 2016 15:50:43 +0000 (10:50 -0500)]
Fix another installed test typo

This one was causing us to install invalid .test files and thereby
breaking all continuous tests :-(

10 years agoSync default double-click time with GNOME
Matthias Clasen [Mon, 7 Mar 2016 12:48:29 +0000 (07:48 -0500)]
Sync default double-click time with GNOME

The default value for the double-click key in the
org.gnome.settings-daemon.peripherals.mouse schema is 400.
Use the same value as the declared default for the
gtk-double-click-time GTK+ setting, to avoid pointless
differences in corner cases.

https://bugzilla.gnome.org/show_bug.cgi?id=720950

10 years agowayland: Implement gtk-keynav-use-caret setting
Matthias Clasen [Mon, 7 Mar 2016 12:35:36 +0000 (07:35 -0500)]
wayland: Implement gtk-keynav-use-caret setting

This is anticipating the gsetting that will be introduced in
https://bugzilla.gnome.org/show_bug.cgi?id=763123

10 years agoFix a typo
Matthias Clasen [Mon, 7 Mar 2016 12:28:56 +0000 (07:28 -0500)]
Fix a typo

This was causing the tools tests to not be installed and,
consequently, never run on continuous.

10 years agoUpdated Spanish translation
Daniel Mustieles [Mon, 7 Mar 2016 10:55:19 +0000 (10:55 +0000)]
Updated Spanish translation

10 years agoUpdated Spanish translation
Daniel Mustieles [Mon, 7 Mar 2016 10:54:56 +0000 (10:54 +0000)]
Updated Spanish translation

10 years agoUpdated Serbian translation
Марко М. Костић [Mon, 7 Mar 2016 10:43:07 +0000 (11:43 +0100)]
Updated Serbian translation

10 years agoUpdated Brazilian Portuguese translation
Rafael Fontenelle [Mon, 7 Mar 2016 05:43:39 +0000 (05:43 +0000)]
Updated Brazilian Portuguese translation

10 years agoinspector: UI refresh
Matthias Clasen [Mon, 7 Mar 2016 01:41:28 +0000 (20:41 -0500)]
inspector: UI refresh

The sidebar in the object page was using up more space than it deserves.
Replace it with a combo box in the subheader. Now that we have more space,
put the CSS node tree and the style properties in the same page again.

10 years agoinspector: Drop the per-object CSS editor
Matthias Clasen [Mon, 7 Mar 2016 02:41:46 +0000 (21:41 -0500)]
inspector: Drop the per-object CSS editor

The global editor is good enough for all uses.

10 years agorange: remove unneeded gtk_widget_queue_draw()
Cosimo Cecchi [Sun, 6 Mar 2016 19:08:49 +0000 (11:08 -0800)]
range: remove unneeded gtk_widget_queue_draw()

10 years agorange: rename function
Cosimo Cecchi [Sun, 6 Mar 2016 18:51:29 +0000 (10:51 -0800)]
range: rename function

The function queues an allocation now, not a draw.

10 years agorange: remove duplicated code
Cosimo Cecchi [Sun, 6 Mar 2016 18:41:34 +0000 (10:41 -0800)]
range: remove duplicated code

This is already called by range_grab_add().

10 years agoscale: trivial code cleanup
Cosimo Cecchi [Sun, 6 Mar 2016 18:36:43 +0000 (10:36 -0800)]
scale: trivial code cleanup

10 years agoscale: deprecate value-spacing style property
Cosimo Cecchi [Sun, 6 Mar 2016 08:27:58 +0000 (00:27 -0800)]
scale: deprecate value-spacing style property

Nothing uses it now.

10 years agoscale: port scale values to gadgets
Cosimo Cecchi [Sun, 6 Mar 2016 05:08:47 +0000 (21:08 -0800)]
scale: port scale values to gadgets

And add a default color like it was before.
This also fixes other issues with scale values interacting with scale
mark labels, which were buggy at least since 3.18.

10 years agoUpdated Hungarian translation
Balázs Úr [Sun, 6 Mar 2016 18:27:26 +0000 (18:27 +0000)]
Updated Hungarian translation

10 years agoMinor documentation improvement
Matthias Clasen [Sun, 6 Mar 2016 15:23:49 +0000 (10:23 -0500)]
Minor documentation improvement

https://bugzilla.gnome.org/show_bug.cgi?id=583780

10 years agospin button: Limit the entry width to reasonable values
Matthias Clasen [Sun, 6 Mar 2016 04:41:10 +0000 (23:41 -0500)]
spin button: Limit the entry width to reasonable values

When opening the value editor for any GtkAdjustment properties
in the inspector, the popover stretches out for miles, since
it reserves enough space to draw MAXDOUBLE. This is not useful.
Limit the space we reserve to 8 digits.

10 years agogtk-demo: Use <accelerator>
Matthias Clasen [Sun, 6 Mar 2016 04:36:54 +0000 (23:36 -0500)]
gtk-demo: Use <accelerator>

Add an example of <accelerator> use in the builder example.

10 years agobuilder: Allow 'primary' as a modifier value
Matthias Clasen [Sun, 6 Mar 2016 04:34:50 +0000 (23:34 -0500)]
builder: Allow 'primary' as a modifier value

Support aliases for flags values in GtkBuilder, and use this
to support the special value 'primary' for GdkModifierType
values.

https://bugzilla.gnome.org/show_bug.cgi?id=699891

10 years agorange: simplify calculation
Cosimo Cecchi [Sun, 6 Mar 2016 03:08:14 +0000 (19:08 -0800)]
range: simplify calculation

10 years agorange: move declarations to inner block
Cosimo Cecchi [Sun, 6 Mar 2016 03:07:55 +0000 (19:07 -0800)]
range: move declarations to inner block

Where they're needed.

10 years agorange: use a fixed offset for mark "snap" size
Cosimo Cecchi [Sun, 6 Mar 2016 03:04:41 +0000 (19:04 -0800)]
range: use a fixed offset for mark "snap" size

Instead of making it dependent on the slider size.

10 years agoRevert "range: use border box for slider area"
Cosimo Cecchi [Sun, 6 Mar 2016 02:56:14 +0000 (18:56 -0800)]
Revert "range: use border box for slider area"

Since it causes problems with event coordinates.

This reverts commit 0883ff5eedf73b1197f2a49fb7e55ce227917335.

10 years agoUpdated Swedish translation
Anders Jonsson [Sat, 5 Mar 2016 23:03:05 +0000 (23:03 +0000)]
Updated Swedish translation

10 years agoUpdated Slovenian translation
Matej Urbančič [Sat, 5 Mar 2016 21:37:17 +0000 (22:37 +0100)]
Updated Slovenian translation

10 years agoUpdated Slovenian translation
Matej Urbančič [Sat, 5 Mar 2016 21:33:50 +0000 (22:33 +0100)]
Updated Slovenian translation

10 years agoMake the settings test fail
Matthias Clasen [Sat, 5 Mar 2016 20:48:40 +0000 (15:48 -0500)]
Make the settings test fail

Small thinko: We only get to see the test artifacts in
continuous if the test fails. So make it fail, temporarily.

10 years agoAdwaita: fix glitch in fine-tune scrollbar theming
Cosimo Cecchi [Sat, 5 Mar 2016 20:04:52 +0000 (12:04 -0800)]
Adwaita: fix glitch in fine-tune scrollbar theming

The fine-tune mode should not change the overall dimensions of the
scrollbar.

10 years agoUpdated Russian translation
Stas Solovey [Sat, 5 Mar 2016 19:56:37 +0000 (19:56 +0000)]
Updated Russian translation

10 years agoUpdated Slovenian translation
Matej Urbančič [Sat, 5 Mar 2016 19:56:06 +0000 (20:56 +0100)]
Updated Slovenian translation

10 years agoUpdated Slovenian translation
Matej Urbančič [Sat, 5 Mar 2016 19:49:05 +0000 (20:49 +0100)]
Updated Slovenian translation

10 years agoUpdated Lithuanian translation
Aurimas Černius [Sat, 5 Mar 2016 19:37:17 +0000 (21:37 +0200)]
Updated Lithuanian translation

10 years agowin32: use a struct for the event source
Paolo Borelli [Sat, 5 Mar 2016 18:02:15 +0000 (19:02 +0100)]
win32: use a struct for the event source

This removes the event_poll_fd global variable and the (ab)use of
get_default_display. It is also more consistent with other backends.

Also store display

10 years agowin32: fix "unused variable" warning
Paolo Borelli [Sat, 5 Mar 2016 18:43:32 +0000 (19:43 +0100)]
win32: fix "unused variable" warning

10 years agoUpdated Brazilian Portuguese translation
Rafael Fontenelle [Sat, 5 Mar 2016 19:05:56 +0000 (19:05 +0000)]
Updated Brazilian Portuguese translation

10 years agotestsuite: Remove a test that isn't valid with csd
Matthias Clasen [Sat, 5 Mar 2016 18:47:41 +0000 (13:47 -0500)]
testsuite: Remove a test that isn't valid with csd

With csd, the allocation of the window will be larger than the
default size, since it includes borders and decorations. Just
remove this check.

10 years agoAdd a test that dumps settings
Matthias Clasen [Sat, 5 Mar 2016 18:41:47 +0000 (13:41 -0500)]
Add a test that dumps settings

This is not much of a test, tbh. But it will give us a convenient
dump of all GTK+ settings in continuous, which helps with tracking
down test failures that might depend on settings.